home *** CD-ROM | disk | FTP | other *** search
ColdFusion Markup Language | 2001-06-13 | 771 b | 23 lines |
- <cfapplication name="CFExamples"
- clientmanagement="Yes"
- sessionmanagement="Yes"
- setclientcookies="Yes"
- sessiontimeout="#CreateTimeSpan(0,1,30,0)#"
- applicationtimeout="#CreateTimeSpan(0,1,30,0)#">
-
- <cflock scope="APPLICATION" throwontimeout="No" timeout="10">
- <!--- Set Application Variables --->
- <cfset Application.ExamplesDSN = "CFX">
- <cfset Application.SnippetsDSN = "cfsnippets">
- </cflock>
-
- <!--- Examples are only available for localhost --->
-
- <cfparam name = "CGI.REMOTE_ADDR" default="">
-
- <cfif CGI.REMOTE_ADDR is '' OR NOT (CGI.REMOTE_ADDR IS 'localhost' OR CGI.REMOTE_ADDR IS '127.0.0.1')>
- <cfinclude template="/cfdocs/sorry.htm">
- <cfabort>
- </cfif>
-
-